home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 5 / Apprentice-Release5.iso / Demos / Bowers Development / AppMaker 2.0b5 / Examples / Java / Timeslips / Test.java < prev    next >
Encoding:
Java Source  |  1996-06-12  |  221 b   |  17 lines  |  [TEXT/Rstr]

  1.  
  2. import java.applet.Applet;
  3. import java.awt.BorderLayout;
  4.  
  5. public class Test extends Applet
  6. {
  7.     View    v;
  8.  
  9.     public void init()
  10.     {
  11.         setLayout(new BorderLayout());
  12.  
  13.         add(v = new View());
  14.         v.reshape( 10, 10, 310, 420);
  15.     }
  16. }
  17.